home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ WinNT CrashControl 2.xpl < prev    next >
Text File  |  2001-09-01  |  2KB  |  50 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="System\Crash Control"
  5. "NAME"="Crash Control Options #2"
  6. "VERSION"="1.06"
  7. "WARNING"="1"
  8. "LANGUAGE"="VBScript"
  9. "OSVERSION"="010101"
  10. "TEXT 1"="Automatically Reboot after crash (Blue Screen)"
  11. "DESCRIPTION 1"="This option requires at least a two MB swapfile on your system drive (environment variable "%SystemDrive%"). 
  12. "DESCRIPTION 2"="Otherwise, enabling this option may prevent the system from running properly if the swap file has been moved to another drive. 
  13. "DESCRIPTION 3"="More options can be configured using "Control Panel" -> "System" -> "Startup/Shutdown"."
  14. "DESCRIPTION 4"="NOTE: Rebooting automatically will be effective only if a page file of at least 2Mb is defined on the system drive. Otherwise you'll only get a Blue Screen of Death in the event of a system crash." 
  15. "AUTHOR"="Xteq Systems"
  16. "CONTACTURL"="http://www.xteq.com"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"=" "
  19. "COMMENT 2"="Thanks to Pierre Szwarc for the "this might crash" tip!"
  20.  
  21.  
  22. sPath="HKLM\System\CurrentControlSet\Control\CrashControl\"
  23. sAR="AutoReboot"
  24.  
  25. Sub Plugin_Initialize 
  26.  if RegPathExists(sPath)=false then
  27.     Call Disable
  28.  else
  29.     i=RegReadValue(sPath & sAR)
  30.     if i=1 then Call SetUIElement(1,True)
  31.  end if
  32. End Sub
  33.  
  34. Sub Plugin_CheckData(ElementIndex)
  35. End Sub
  36.  
  37. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  38.  b=GetUIElement(1)
  39.  if b=true then
  40.     Call RegWriteValue(sPath & sAR,1,2)
  41.  else
  42.     Call RegWriteValue(sPath & sAR,0,2)
  43.  end if
  44.  
  45.  Call Restart
  46. End Sub
  47.  
  48. Sub Plugin_Terminate 
  49. End Sub
  50.